Add PageRank algorithm#1052
Open
BSZKaneki wants to merge 2 commits into
Open
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1052 +/- ##
==========================================
+ Coverage 95.85% 95.88% +0.03%
==========================================
Files 395 396 +1
Lines 30160 30436 +276
==========================================
+ Hits 28910 29185 +275
- Misses 1250 1251 +1 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Author
|
@siriak Hello could you please take a look at this pull request when you have a moment? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request implements the PageRank algorithm under the
graphmodule.Algorithm Overview
PageRank is an algorithm used to rank elements in a network based on their structure of incoming links. It computes a probability distribution representing the likelihood that a person randomly clicking on links will arrive at any particular page.
For more details, see the Wikipedia article: https://en.wikipedia.org/wiki/PageRank
Implementation Details
Node: Hash + Eq + Clone, meaning it can rank nodes of any type (e.g.,String, integer types, or custom hashable structures).Type of change
Checklist:
cargo clippy --all -- -D warningsjust before my last commit and fixed any issue that was found.cargo fmtjust before my last commit.cargo testjust before my last commit and all tests passed.mod.rsfile within its own folder, and in any parent folder(s).DIRECTORY.mdwith the correct link.CONTRIBUTING.mdand my code follows its guidelines.